type net/http.http2FrameHeader
35 uses
net/http (current package)
h2_bundle.go#L1454: type http2frameParser func(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error)
h2_bundle.go#L1479: type http2FrameHeader struct {
h2_bundle.go#L1503: func (h http2FrameHeader) Header() http2FrameHeader { return h }
h2_bundle.go#L1505: func (h http2FrameHeader) String() string {
h2_bundle.go#L1513: func (h http2FrameHeader) writeDebug(buf *bytes.Buffer) {
h2_bundle.go#L1540: func (h *http2FrameHeader) checkValid() {
h2_bundle.go#L1546: func (h *http2FrameHeader) invalidate() { h.valid = false }
h2_bundle.go#L1559: func http2ReadFrameHeader(r io.Reader) (http2FrameHeader, error) {
h2_bundle.go#L1565: func http2readFrameHeader(buf []byte, r io.Reader) (http2FrameHeader, error) {
h2_bundle.go#L1568: return http2FrameHeader{}, err
h2_bundle.go#L1570: return http2FrameHeader{
h2_bundle.go#L1585: Header() http2FrameHeader
h2_bundle.go#L1912: http2FrameHeader
h2_bundle.go#L1929: func http2parseDataFrame(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
h2_bundle.go#L2035: http2FrameHeader
h2_bundle.go#L2039: func http2parseSettingsFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2174: http2FrameHeader
h2_bundle.go#L2180: func http2parsePingFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
h2_bundle.go#L2207: http2FrameHeader
h2_bundle.go#L2222: func http2parseGoAwayFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2250: http2FrameHeader
h2_bundle.go#L2264: func http2parseUnknownFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2271: http2FrameHeader
h2_bundle.go#L2275: func http2parseWindowUpdateFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2318: http2FrameHeader
h2_bundle.go#L2343: func http2parseHeadersFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
h2_bundle.go#L2460: http2FrameHeader
h2_bundle.go#L2485: func http2parsePriorityFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
h2_bundle.go#L2530: http2FrameHeader
h2_bundle.go#L2534: func http2parseRSTStreamFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2562: http2FrameHeader
h2_bundle.go#L2566: func http2parseContinuationFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2603: http2FrameHeader
h2_bundle.go#L2617: func http2parsePushPromise(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {